create table "LabSampleCollection"(
				"LabSampleCollectionId" serial primary key,
				"NewLabBookingDetailId" int references "NewLabBookingDetail"("NewLabBookingDetailId"),				
				"SampleCollectedBy" int references "Account"("AccountId"), 
				"CollectionDate" timestamp without time zone,
				"IsBarcodeGenerated" boolean default false,
				"BarcodeGeneratedBy" int references "Account"("AccountId"), 
				"BarcodeDate" timestamp without time zone
);
----------------------------------


insert into "LabBookingStatus" ("Status","Active") 
values
('SampleCollected', true),
('SampleTransfered', true),
('SampleRecieved', true);